
  

  
  @property --color {
  syntax: "*";
  inherits: true;
  initial-value: ;
}
@property --input {
  syntax: "<color>";
  inherits: true;
  initial-value: transparent;
}
@property --border {
  syntax: "<color>";
  inherits: true;
  initial-value: #edededff;
}
@property --button {
  syntax: "<color>";
  inherits: true;
  initial-value: transparent;
}
@property --blue-50 {
  syntax: "<color>";
  inherits: true;
  initial-value: #EFF6FF;
}
@property --primary {
  syntax: "<color>";
  inherits: true;
  initial-value: #2563EB;
}
@property --red-100 {
  syntax: "<color>";
  inherits: true;
  initial-value: #FEE2E2;
}
@property --red-500 {
  syntax: "<color>";
  inherits: true;
  initial-value: #EF4444;
}
@property --sidebar {
  syntax: "<color>";
  inherits: true;
  initial-value: #171717;
}
@property --success {
  syntax: "<color>";
  inherits: true;
  initial-value: #064E3B;
}
@property --teal-50 {
  syntax: "<color>";
  inherits: true;
  initial-value: #F0FDFA;
}
@property --text-sm {
  syntax: "<length-percentage>";
  inherits: true;
  initial-value: 0px;
}
@property --text-xl {
  syntax: "<length-percentage>";
  inherits: true;
  initial-value: 1.875rem;
}
@property --text-xs {
  syntax: "<length-percentage>";
  inherits: true;
  initial-value: 0px;
}
@property --blue-700 {
  syntax: "<color>";
  inherits: true;
  initial-value: #1D4ED8;
}
@property --blue-800 {
  syntax: "<color>";
  inherits: true;
  initial-value: #1E40AF;
}
@property --grey-300 {
  syntax: "<color>";
  inherits: true;
  initial-value: #D4D4D4;
}
@property --grey-400 {
  syntax: "<color>";
  inherits: true;
  initial-value: #A3A3A3;
}
@property --grey-600 {
  syntax: "<color>";
  inherits: true;
  initial-value: #525252;
}
@property --grey-700 {
  syntax: "<color>";
  inherits: true;
  initial-value: #404040;
}
@property --teal-100 {
  syntax: "<color>";
  inherits: true;
  initial-value: #CCFBF1;
}
@property --teal-200 {
  syntax: "<color>";
  inherits: true;
  initial-value: #99F6E4;
}
@property --teal-300 {
  syntax: "<color>";
  inherits: true;
  initial-value: #5EEAD4;
}
@property --teal-400 {
  syntax: "<color>";
  inherits: true;
  initial-value: #2DD4BF;
}
@property --green-300 {
  syntax: "<color>";
  inherits: true;
  initial-value: #6EE7B7;
}
@property --green-400 {
  syntax: "<color>";
  inherits: true;
  initial-value: #34D399;
}
@property --text-base {
  syntax: "<length-percentage>";
  inherits: true;
  initial-value: 0px;
}
@property --background {
  syntax: "<color>";
  inherits: true;
  initial-value: #FAFAFA;
}
@property --foreground {
  syntax: "<color>";
  inherits: true;
  initial-value: #262626;
}
@property --input-dark {
  syntax: "<color>";
  inherits: true;
  initial-value: transparent;
}
@property --button-hover {
  syntax: "<color>";
  inherits: true;
  initial-value: transparent;
}
@property --sidebar-accent {
  syntax: "<color>";
  inherits: true;
  initial-value: #F5F5F5;
}
@property --momentumscarlet {
  syntax: "<color>";
  inherits: true;
  initial-value: transparent;
}
@property --foreground-muted {
  syntax: "<color>";
  inherits: true;
  initial-value: #737373;
}

  :host, :root {
  --input: color-mix(in srgb, var(--background) 95%, var(--foreground));
  --border: color-mix(in srgb, var(--background) 95%, var(--foreground));
  --button: color-mix(in srgb, var(--background) 85%, var(--foreground));
  --blue-50: #EFF6FF;
  --primary: #ff3200;
  --red-100: #FEE2E2;
  --red-500: #EF4444;
  --sidebar: #fafafa;
  --success: #059669;
  --teal-50: #F0FDFA;
  --text-sm: 0.875rem;
  --text-xl: 1.875rem;
  --text-xs: 0.75rem;
  --blue-700: #1D4ED8;
  --blue-800: #1E40AF;
  --grey-300: #D4D4D4;
  --grey-400: #A3A3A3;
  --grey-600: #525252;
  --grey-700: #404040;
  --teal-100: #CCFBF1;
  --teal-200: #99F6E4;
  --teal-300: #5EEAD4;
  --teal-400: #2DD4BF;
  --green-300: #6EE7B7;
  --green-400: #34D399;
  --text-base: 1rem;
  --background: #ffffff;
  --foreground: #262626;
  --input-dark: #1F1F1F;
  --button-hover: color-mix(in srgb, var(--foreground) 4%,transparent);
  --sidebar-accent: color-mix(in srgb, var(--foreground) 4%,transparent);
  --momentumscarlet: #ff3200;
  --foreground-muted: color-mix(in srgb, var(--foreground) 40%, var(--background));;
}
  @media (prefers-color-scheme: dark) {
      :host, :root {
  --sidebar: #111111;
  --background: #141414;
  --foreground: #f5f5f5;
}
    }
  @media (prefers-color-scheme: light) {
      :host, :root {
  --input: color-mix(in srgb, var(--background) 95%, var(--foreground));
  --border: color-mix(in srgb, var(--background) 95%, var(--foreground));
  --button: color-mix(in srgb, var(--background) 85%, var(--foreground));
  --blue-50: #EFF6FF;
  --primary: #ff3200;
  --red-100: #FEE2E2;
  --red-500: #EF4444;
  --sidebar: #fafafa;
  --success: #059669;
  --teal-50: #F0FDFA;
  --text-sm: 0.875rem;
  --text-xl: 1.875rem;
  --text-xs: 0.75rem;
  --blue-700: #1D4ED8;
  --blue-800: #1E40AF;
  --grey-300: #D4D4D4;
  --grey-400: #A3A3A3;
  --grey-600: #525252;
  --grey-700: #404040;
  --teal-100: #CCFBF1;
  --teal-200: #99F6E4;
  --teal-300: #5EEAD4;
  --teal-400: #2DD4BF;
  --green-300: #6EE7B7;
  --green-400: #34D399;
  --text-base: 1rem;
  --background: #ffffff;
  --foreground: #262626;
  --input-dark: #1F1F1F;
  --button-hover: color-mix(in srgb, var(--foreground) 4%,transparent);
  --sidebar-accent: color-mix(in srgb, var(--foreground) 4%,transparent);
  --momentumscarlet: #ff3200;
  --foreground-muted: color-mix(in srgb, var(--foreground) 40%, var(--background));;
}
    }
  [data-nc-theme~="Default"] {
  --input: color-mix(in srgb, var(--background) 95%, var(--foreground));
  --border: color-mix(in srgb, var(--background) 95%, var(--foreground));
  --button: color-mix(in srgb, var(--background) 85%, var(--foreground));
  --blue-50: #EFF6FF;
  --primary: #ff3200;
  --red-100: #FEE2E2;
  --red-500: #EF4444;
  --sidebar: #fafafa;
  --success: #059669;
  --teal-50: #F0FDFA;
  --text-sm: 0.875rem;
  --text-xl: 1.875rem;
  --text-xs: 0.75rem;
  --blue-700: #1D4ED8;
  --blue-800: #1E40AF;
  --grey-300: #D4D4D4;
  --grey-400: #A3A3A3;
  --grey-600: #525252;
  --grey-700: #404040;
  --teal-100: #CCFBF1;
  --teal-200: #99F6E4;
  --teal-300: #5EEAD4;
  --teal-400: #2DD4BF;
  --green-300: #6EE7B7;
  --green-400: #34D399;
  --text-base: 1rem;
  --background: #ffffff;
  --foreground: #262626;
  --input-dark: #1F1F1F;
  --button-hover: color-mix(in srgb, var(--foreground) 4%,transparent);
  --sidebar-accent: color-mix(in srgb, var(--foreground) 4%,transparent);
  --momentumscarlet: #ff3200;
  --foreground-muted: color-mix(in srgb, var(--foreground) 40%, var(--background));;
}
[data-nc-theme~="darkmode"] {
  --sidebar: #111111;
  --background: #141414;
  --foreground: #f5f5f5;
}
    


@layer base {
  
  body, :host {
    /* Color */
    
    /* Fonts */
    --font-sans: 'Inter',sans-serif;

    /* Font size */
    
    /* Font weight */
    
    /* Shadows */
    
    /* Border radius */
    
    /* Spacing */
    
    /* Z-index */
    
  }
  @keyframes animation-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @keyframes animation-fade-in {
    from {
      opacity:0;
    }
    to {
      opacity:1;
    }
  }
  @keyframes animation-fade-out {
    from {
      opacity:1;
    }
    to {
      opacity:0;
    }
  }
}


    .fobImu {
      color:var(--foreground);
      background:var(--background);
      min-height:100vh;
      overflow-y:visible;
      align-items:end;
      padding-left:200px;
      justify-content:start;
    }

    @media (max-width: 600px) {

    .fobImu {
      background:white;
      min-height:100vh;
      overflow-y:visible;
      align-items:end;
      padding-left:0px;
      justify-content:start;
    }
    }

    .cbQguL {
      width:100%;
      cursor:default;
      height:100%;
      display:flex;
      position:absolute;
      background:;
      overflow-x:hidden;
      overflow-y:hidden;
      user-select:none;
      border-radius:inherit;
      flex-direction:column;
      pointer-events:none;
    }

    .flXBRw {
      width:100%;
      height:100%;
      animation:var(--animation);
    }

    .Profile-settings\:-2b1Z6lvS70U72ON3Yv1p {
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .dUkPXw {
      width:100%;
      height:100%;
      display:contents;
    }

    .fzvQal {
      top:var(--offset, 16px);
      left:var(--offset, 16px);
      right:var(--offset, 16px);
      bottom:var(--offset, 16px);
      z-index:50;
      position:var(--position, fixed);
      pointer-events:none;
    }

    .fzvQal.bottom {
      flex-direction:column-reverse;
      justify-content:end;
    }

    .ezcecC {
      animation:fadeInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
      align-items:center;
      flex-direction:column;
      padding-bottom:12px;
      justify-content:start;
      transform-origin:top center;
    }

    .ezcecC.disposing {
      animation:fadeOutUp 0.5s ease-out forwards;
    }

    .ezcecC.left {
      align-self:start;
    }

    .ezcecC.right {
      align-self:end;
    }

    .ezcecC.bottom {
      animation:fadeInDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
      padding-top:12px;
      transform-origin:bottom center;
    }

    .ezcecC.disposing-bottom {
      animation:fadeOutDown 0.5s ease-out forwards;
    }

    .dPrdBe {
      width:100%;
      height:100%;
      overflow:hidden;
    }

    .vLhhu {
      width:100%;
      height:100%;
    }

    .bRKGYi {
      width:1rem;
      height:1rem;
    }

    .byOYIn {
      gap:8px;
      color:var(--grey-200, #E5E5E5);
      cursor:pointer;
      display:flex;
      max-width:350px;
      box-shadow:0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05);
      align-items:center;
      line-height:1.3;
      padding-top:12px;
      user-select:none;
      padding-left:16px;
      border-radius:14px;
      padding-right:16px;
      flex-direction:row;
      padding-bottom:12px;
      pointer-events:auto;
      justify-content:start;
      background-color:var(--toast-background-color, #171717);
    }

    .byOYIn:hover {
      color:var(--teal-50, #F0FDFA);
      background-color:var(--grey-800, #262626);
    }

    .bdaUyR {
      width:100%;
      height:2.25rem;
      font-size:.875rem;
      background:var(--input);
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
    }

    .bdaUyR:focus {
      outline-color:#2463ebff;
      outline-style:solid;
      outline-width:1px;
    }

    .eKEbLC {
      color:var(--foreground);
      font-size:var(--text-xl);
    }

    .bbvwgo {
      gap:12px;
      width:fit-content;
      padding-top:12px;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      padding-left:12px;
      border-radius:8px;
      padding-right:12px;
      padding-bottom:12px;
    }

    .eGLxbc {
      color:var(--foreground);
      width:100%;
      height:2.25rem;
      font-size:.875rem;
      background:var(--input);
      align-items:start;
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
      justify-content:center;
    }

    .eGLxbc:focus {
      outline-color:#2463ebff;
      outline-style:solid;
      outline-width:1px;
    }

    .cRdcQa {
      width:100%;
      height:100%;
      position:absolute;
      border-color:transparent;
      border-style:solid;
      border-width:4px;
      border-radius:50%;
      border-top-color:var(--foreground);
      border-top-style:solid;
      border-top-width:4px;
    }

    .jvhPB {
      gap:0.25rem;
      grid-column:span 2;
    }

    .dhObNa {
      color:var(--foreground-muted);
      display:inline-block;
    }

    .aBLHD {
      color:var(--foreground);
      width:100%;
      height:2.25rem;
      font-size:.875rem;
      background:var(--input);
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
    }

    .aBLHD:focus {
      outline-color:#2463ebff;
      outline-style:solid;
      outline-width:1px;
    }

    .aBLHD:disabled {
      color:var(--grey-400);
      cursor:not-allowed;
    }

    .Profile-settings\:DQB4f7Q1uk68aBx_rpm-x {
      width:100%;
      cursor:pointer;
      display:flex;
      row-gap:0.5rem;
      column-gap:0.5rem;
      overflow-x:hidden;
      overflow-y:hidden;
      align-items:center;
      padding-top:0.75rem;
      padding-left:0.75rem;
      padding-right:0.75rem;
      flex-direction:row;
      padding-bottom:0.75rem;
      justify-content:flex-start;
      border-top-left-radius:4px;
      border-top-right-radius:4px;
      border-bottom-left-radius:4px;
      border-bottom-right-radius:4px;
    }

    .Profile-settings\:DQB4f7Q1uk68aBx_rpm-x:hover {
      background:var(--primary);
    }

    .Profile-settings\:DQB4f7Q1uk68aBx_rpm-x.disabled {
      color:var(--foreground-muted);
    }

    .Profile-settings\:DQB4f7Q1uk68aBx_rpm-x.disabled:hover {
      cursor:not-allowed;
      background:var(--grey-700);
    }

    .ftCACs {
      gap:0.25rem;
      grid-column:span 1;
    }

    .cTjCtm {
      gap:0.5rem;
      color:var(--foreground);
      width:fit-content;
      cursor:pointer;
      background:var(--button);
      align-items:center;
      padding-top:0.5rem;
      padding-left:1rem;
      border-radius:6px;
      padding-right:1rem;
      flex-direction:row;
      padding-bottom:0.5rem;
      justify-content:start;
    }

    .cTjCtm:hover {
      background:var(--button-hover);
    }

    .Profile-settings\:E232dun4Gy4aCzjREaK46 {
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .eaboky {
      width:fit-content;
      height:auto;
    }

    .Profile-settings\:Et46_ZyO8eiFvvHPYAnlY {
      color:var(--foreground);
      cursor:pointer;
      display:flex;
      row-gap:4px;
      column-gap:4px;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:10px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:flex-start;
      border-top-left-radius:4px;
      border-top-right-radius:4px;
      border-bottom-left-radius:4px;
      border-bottom-right-radius:4px;
    }

    .Profile-settings\:Et46_ZyO8eiFvvHPYAnlY.trigger-open {
      background:var(--background);
      text-underline-offset:0.5rem;;
      border-top-left-radius:4px;
      border-top-right-radius:4px;
      border-bottom-left-radius:4px;
      border-bottom-right-radius:4px;
    }

    .Profile-settings\:Et46_ZyO8eiFvvHPYAnlY:hover {
      background:var(--sidebar-accent);
    }

    .ClRXt {
      font-size:14px;
    }

    .bmKLkA {
      width:fit-content;
      height:fit-content;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
    }

    .Profile-settings\:G1F_hAuqmNyLDSDSR857I {
      align-items:flex-end;
      justify-content:center;
    }

    .bxAovz {
      display:flex;
      flex-wrap:wrap;
      flex-direction:row;
    }

    .bcGnjX {
      align-items:center;
      flex-direction:row;
      padding-bottom:12px;
      justify-content:space-between;
      border-bottom-color:var(--border);
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

    .eoaBbS {
      width:fit-content;
      height:fit-content;
    }

    .bYQZdy {
      top:0px;
      left:0px;
      right:0px;
      bottom:0px;
      opacity:0;
      position:absolute;
      pointer-events:none;
    }

    .fmQWtQ {
      color:var(--grey-400, #A3A3A3);
      font-size:0.875rem;
      margin-top:8px;
    }

    .Profile-settings\:LmCbbP_dH2Oiucg5M4I2Z {
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .devNLL {
      color:var(--foreground);
      font-size:1.2rem;;
      font-weight:600;;
    }

    .dYbGCT {
      gap:20px;
      width:100%;
      position:relative;
      padding-top:32px;
      padding-left:32px;
      padding-right:32px;
      padding-bottom:32px;
    }

    @media (max-width: 600px) {

    .dYbGCT {
      padding-top:5rem;
    }
    }

    .bEzQpQ {
      row-gap:1rem;
      column-gap:1rem;
      flex-direction:row;
    }

    .cDGrQA {
      align-items:center;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:space-between;
      border-bottom-color:var(--border);
      border-bottom-style:solid;
      border-bottom-width:1px;
    }

    .doBABe {
      width:100%;
      height:100%;
      opacity:0.3;
      position:absolute;
      border-color:var(--foreground);
      border-style:solid;
      border-width:4px;
      border-radius:50%;
    }

    .bEhzho {
      gap:0.25rem;
    }

    .dYElHa {
      width:var(--width);
      height:var(--height);
      position:fixed;
      pointer-events:none;
    }

    .dYElHa.modal {
      pointer-events:all;
    }

    .Profile-settings\:R5yymUv5fNyCQKV6mqAps {
      width:6px;
      height:6px;
      background:var(--green-400);
      border-top-left-radius:100%;
      border-top-right-radius:100%;
      border-bottom-left-radius:100%;
      border-bottom-right-radius:100%;
    }

    .YLTkx {
      gap:4px;
      align-items:center;
      flex-direction:row;
      justify-content:start;
    }

    .dcduzk {
      flex:1;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:start;
    }

    .Profile-settings\:T2YHlxtILSy9xLE1_LJ0e {
      color:var(--foreground);
      cursor:pointer;
      height:2.25rem;
      display:flex;
      row-gap:2rem;
      font-size:.875rem;
      background:var(--input);
      column-gap:2rem;
      align-items:center;
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
      flex-direction:row;
      justify-content:space-between;
    }

    .Profile-settings\:T2YHlxtILSy9xLE1_LJ0e:hover {
      background:var(--button-hover);
    }

    .bHYAZb {
      width:1rem;
      height:1rem;
      animation:spinner 1s linear infinite;
      border-radius:50%;
    }

    .bEioaW {
      color:var(--foreground, #262626);
      font-size:16px;
      font-family:'Inter';
      font-weight:600;
    }

    .Profile-settings\:WvWVa0pI6Xs30vMq6l82R {
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .Profile-settings\:WxU4soB4W8lupbHPKD-Wd {
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .cRAWVO {
      gap:1rem;
      display:grid;
      max-width:800px;
      grid-template-columns:1fr 1fr 1fr 1fr;
    }

    @media (max-width: 39rem) {

    .cRAWVO {
      width:100%;
      display:flex;
      flex-direction:column;
    }
    }

    .dfWVpC {
      color:var(--foreground);
      width:100%;
      height:2.25rem;
      font-size:.875rem;
      min-width:125px;
      background:var(--input);
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
    }

    .dfWVpC:focus {
      outline-color:#2463ebff;
      outline-style:solid;
      outline-width:1px;
    }

    .blVzaG {
      gap:12px;
      flex:1;
      left:0px;
      z-index:1;
      position:sticky;
      max-width:300px;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:start;
    }

    .Profile-settings\:b4dNPuj14Y_mw1cPQfW7D {
      color:var(--foreground);
      width:inherit;
      cursor:pointer;
      display:flex;
      row-gap:4px;
      column-gap:4px;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:9px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:flex-start;
      border-top-left-radius:4px;
      border-top-right-radius:4px;
      border-bottom-left-radius:4px;
      border-bottom-right-radius:4px;
    }

    .Profile-settings\:b4dNPuj14Y_mw1cPQfW7D.trigger-open {
      background:var(--background);
      text-underline-offset:0.5rem;;
      border-top-left-radius:4px;
      border-top-right-radius:4px;
      border-bottom-left-radius:4px;
      border-bottom-right-radius:4px;
    }

    .Profile-settings\:b4dNPuj14Y_mw1cPQfW7D:hover {
      background:var(--sidebar-accent);
    }

    .fhXOpI {
      flex:1;
      display:flex;
      row-gap:0.33rem;
      flex-wrap:wrap;
      max-width:fit-content;
      background:var(--input);
      column-gap:0.33rem;
      padding-top:4px;
      padding-left:4px;
      padding-right:4px;
      flex-direction:row;
      padding-bottom:4px;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .dbFKKN {
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
    }

    .Profile-settings\:d4ZXdZt7_4eRVdHjmUyYk {
      display:flex;
      row-gap:0.33rem;
      font-size:.875rem;
      column-gap:0.33rem;
      align-items:center;
      flex-direction:row;
      justify-content:flex-start;
    }

    .cSxxQi {
      width:100%;
      position:relative;
      overflow-x:auto;
      padding-top:8px;
      padding-left:32px;
      padding-right:32px;
      padding-bottom:32px;
    }

    .dIQgeE {
      width:auto;
      height:2.25rem;
      font-size:.875rem;
      background:var(--input);
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
    }

    .dIQgeE:focus {
      outline-color:#2463ebff;
      outline-style:solid;
      outline-width:1px;
    }

    .bGbzVi {
      color:var(--success);
      display:inline-block;
      text-align:center;
    }

    .eFQaJC {
      top:var(--top);
      left:var(--left);
      position:absolute;
      outline-color:transparent;
      outline-style:none;
      outline-width:0px;
      pointer-events:all;
      transform-origin:var(--transform-origin-x) var(--transform-origin-y);
    }

    .eFQaJC:focus {
      outline-color:transparent;
      outline-style:none;
      outline-width:0px;
    }

    .eFQaJC.hidden {
      visibility:hidden;
      pointer-events:none;
    }

    .eFQaJC.match-anchor-width {
      width:var(--sc-anchor-width);
    }

    .Profile-settings\:gS2jFQk6QZq3Vc-VSOBcr {
      color:var(--foreground);
      min-width:fit-content;
      background:var(--background);
      margin-top:0.5rem;
      align-items:flex-start;
      padding-top:0.5rem;
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      padding-left:0.5rem;
      border-radius:6px;
      padding-right:0.5rem;
      padding-bottom:0.5rem;
      justify-content:flex-start;
    }

    .cxJHK {
      flex-direction:row;
    }

    .cxJHK.orientation-vertical {
      flex-direction:column;
    }

    .Profile-settings\:iqVIfpZPHOaMQLIh5j20L {
      gap:2rem;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      padding-top:2rem;
      flex-direction:row;
      padding-bottom:2rem;
      justify-content:space-between;
    }

    .ckBaYV.hidden {
      display:none;
    }

    .Profile-settings\:kO6WSKZGJa4II12AM8vu7 {
      row-gap:2rem;
      column-gap:2rem;
    }

    .Profile-settings\:kcGmaoaTTQ2FcaC0LODV6 {
      width:fit-content;
      display:flex;
      min-width:200px;
      align-items:flex-start;
      flex-direction:row;
      justify-content:flex-start;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .bvHPBK {
      gap:1rem;
      align-items:center;
      grid-column:span 4;;
      flex-direction:row;
      justify-content:start;
    }

    .fAvjAT {
      width:100%;
      z-index:4;
      position:fixed;
      background: var(--sidebar-accent);
      border-color:var(--border);
      border-style:solid;
      border-width:1px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    @media (min-width: 600px) {

    .fAvjAT {
      left:0px;
      width:200px;
      height:calc(100% - 1rem);
      display:block;
      margin-top:0.5rem;
      margin-left:0.5rem;
      margin-bottom:0.5rem;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
    }
    }

    .HNfZJ {
      gap:24px;
      flex:1;
      height:100%;
      position:relative;
      padding-top:16px;
      padding-left:16px;
      padding-right:16px;
      padding-bottom:16px;
      justify-content:space-between;
    }

    .fmkzCC {
      width:18px;
      height:18px;
      align-items:center;
      justify-content:center;
    }

    .dAGwwL {
      color:var(--foreground);
    }

    .nav-sidebar-profile\:QhAZNvHJNSsRVOteASe0s {
      cursor:pointer;
      max-width:200px;
    }

    .FMIMl {
      flex:1;
      font-size:var(--text-sm);
      font-weight:500;
    }

    .cxeoWU {
      gap:4px;
      color:var(--foreground);
      cursor:pointer;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:center;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .cxeoWU.selected {
      color:var(--foreground);
      background:var(--sidebar-accent);
    }

    .cxeoWU:hover {
      background-color:var(--sidebar-accent);
    }

    .cxeoWU.disabled {
      color:var(--foreground-muted);
      cursor:not-allowed;
    }

    .bwqCLL {
      row-gap:1rem;
      column-gap:1rem;
      flex-direction:row;
      justify-content:space-between;
    }

    .eVWSuH {
      display:block;
    }

    .eVWSuH.collapsed {
      display:none;
    }

    .UYEId {
      cursor:pointer;
      display:block;
      padding-top:0.25rem;
      border-color:var(--grey-300);
      border-style:solid;
      border-width:1px;
      padding-left:0.25rem;
      padding-right:0.25rem;
      padding-bottom:0.25rem;
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    @media (min-width: 600px) {

    .UYEId {
      display:none;
    }
    }

    .UYEId:hover {
      background: var(border);
    }

    .bfPINz {
      gap:8px;
      font-size:12px;
      font-family:'Inter';
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .Profile-settings\:rCKQ_Xvl3SnuAlTLNCVHP {
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .dMhcuR {
      top:-5px;
      color:#871700;
      font-size:9px;
      background:#fce2dd;
      font-family:inherit;
      font-weight:700;
      padding-top:0.20rem;
      padding-left:0.33rem;
      border-radius:6px;
      padding-right:0.33rem;
      padding-bottom:0.20rem;
      text-decoration-color:#c4c4c4ff;
      text-decoration-style:dashed;
    }

    .dJUKRM {
      position:relative;
      overflow-x:auto;
      overflow-y:auto;
      border-radius:8px;
    }

    .cshFLh {
      cursor:pointer;
      z-index:4;
    }

    .dZLzSm {
      color:#fff;
      width:30px;
      cursor:pointer;
      height:30px;
      font-size:12px;
      box-sizing:content-box;;
      align-items:center;
      font-weight:600;
      line-height:20px;
      padding-top:4px;
      padding-left:4px;
      border-radius:10px;
      padding-right:4px;
      padding-bottom:4px;
      justify-content:center;
      background-color:#1a1a1a;
    }

    .dZLzSm:hover {
      background-color:#ff3200;
    }

    .bXPppB {
      row-gap:2rem;
      column-gap:2rem;
      flex-direction:row;
      justify-content:space-between;
    }

    .Profile-settings\:xA8btb6YdyGsbobq06w7L {
      border-top-left-radius:6px;
      border-top-right-radius:6px;
      border-bottom-left-radius:6px;
      border-bottom-right-radius:6px;
    }

    .blfohv {
      color:var(--foreground);
      width:100%;
      height:2.25rem;
      font-size:.875rem;
      background:var(--input);
      padding-left:8px;
      border-radius:6px;
      padding-right:8px;
    }

    .blfohv:focus {
      outline-color:#2463ebff;
      outline-style:solid;
      outline-width:1px;
    }

    .Profile-settings\:y4hxdmhdHK9m5vgIHC8fO {
      row-gap:2rem;
      column-gap:2rem;
    }

    .fwIcxD {
      color:var(--foreground, #262626);;
      font-size:1.2rem;;
      font-weight:600;;
    }